home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 2001 Haziran
/
CHIP Haziran2001.iso
/
prog
/
share
/
04
/
setup.exe
/
MM6.Cab
/
F1703_KeyAction.scpt.F6A680DD_F3FB_4CF3_BABB_0D0F06E630F5
< prev
next >
Wrap
Text File
|
2000-08-17
|
254b
|
10 lines
CSKeyAction = new Array;
function CSKeyPress(ev) {
var code;
if(IsIE()) code = event.keyCode;
else code = ev.which;
var act = CSKeyAction[code];
if(typeof(act) != "undefined")
CSAction (new Array(act));
}
document.onkeypress = CSKeyPress;